-
Notifications
You must be signed in to change notification settings - Fork 12.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Adding splitdouble HLSL function #109331
Adding splitdouble HLSL function #109331
Conversation
cf135e0
to
8f21239
Compare
6d40fb8
to
13a095c
Compare
✅ With the latest revision this PR passed the C/C++ code formatter. |
0ca7458
to
b7b2831
Compare
139c244
to
10f4f24
Compare
4f1cbf3
to
37a5a8a
Compare
24d8571
to
b3d58a8
Compare
b3d58a8
to
164c6af
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
A few last minor nitpicks, but this LGTM!
std::pair<LValue, LValue> | ||
CodeGenFunction::EmitHLSLOutArgLValues(const HLSLOutArgExpr *E, QualType Ty) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is EmitHLSLOutArgLValues
used any other than in CodeGenFunction::EmitHLSLOutArgExpr
at this point? I think we can avoid splitting this method in two.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@llvm-beanz, any reason we couldn't merge those methods together?
164c6af
to
104479d
Compare
- Adding hlsl `splitdouble` intrinsics - Adding DXIL lowering - Adding SPIRV lowering - Adding test Fixes: llvm#108901 --------- Co-authored-by: Joao Saffran <jderezende@microsoft.com>
splitdouble
intrinsicsFixes: #108901